home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / netBoot.new / if_arp.h < prev    next >
C/C++ Source or Header  |  1990-12-19  |  3KB  |  77 lines

  1. /*
  2.  * Copyright (c) 1986 Regents of the University of California.
  3.  * All rights reserved.  The Berkeley software License Agreement
  4.  * specifies the terms and conditions for redistribution.
  5.  *
  6.  *    @(#)if_arp.h 1.4 88/02/08 SMI; from UCB 7.1 1/24/86
  7.  */
  8.  
  9. #ifndef    _IF_ARP_
  10. #define    _IF_ARP_
  11.  
  12. /*
  13.  * Address Resolution Protocol.
  14.  *
  15.  * See RFC 826 for protocol description.  ARP packets are variable
  16.  * in size; the arphdr structure defines the fixed-length portion.
  17.  * Protocol type values are the same as those for 10 Mb/s Ethernet.
  18.  * It is followed by the variable-sized fields ar_sha, arp_spa,
  19.  * arp_tha and arp_tpa in that order, according to the lengths
  20.  * specified.  Field names used correspond to RFC 826.
  21.  */
  22. struct    arphdr {
  23.     u_short    ar_hrd;        /* format of hardware address */
  24. #define ARPHRD_ETHER     1    /* ethernet hardware address */
  25.     u_short    ar_pro;        /* format of protocol address */
  26.     u_char    ar_hln;        /* length of hardware address */
  27.     u_char    ar_pln;        /* length of protocol address */
  28.     u_short    ar_op;        /* one of: */
  29. #define    ARPOP_REQUEST    1    /* request to resolve address */
  30. #define    ARPOP_REPLY    2    /* response to previous request */
  31. #define    REVARP_REQUEST    3    /* Reverse ARP request */
  32. #define    REVARP_REPLY    4    /* Reverse ARP reply */
  33.     /*
  34.      * The remaining fields are variable in size,
  35.      * according to the sizes above, and are defined
  36.      * as appropriate for specific hardware/protocol
  37.      * combinations.  (E.g., see <netinet/if_ether.h>.)
  38.      */
  39. #ifdef    notdef
  40.     u_char    ar_sha[];    /* sender hardware address */
  41.     u_char    ar_spa[];    /* sender protocol address */
  42.     u_char    ar_tha[];    /* target hardware address */
  43.     u_char    ar_tpa[];    /* target protocol address */
  44. #endif    notdef
  45. };
  46.  
  47. /*
  48.  * ARP ioctl request
  49.  */
  50. struct arpreq {
  51.     struct    sockaddr arp_pa;        /* protocol address */
  52.     struct    sockaddr arp_ha;        /* hardware address */
  53.     int    arp_flags;            /* flags */
  54. };
  55. /*  arp_flags and at_flags field values */
  56. #define    ATF_INUSE    0x01    /* entry in use */
  57. #define ATF_COM        0x02    /* completed entry (enaddr valid) */
  58. #define    ATF_PERM    0x04    /* permanent entry */
  59. #define    ATF_PUBL    0x08    /* publish entry (respond for other host) */
  60. #define    ATF_USETRAILERS    0x10    /* has requested trailers */
  61.  
  62. /*
  63.  * This data structure is used by kernel protocol modules to register
  64.  * their interest in a particular packet type with the Ethernet drivers.
  65.  * For example, other kinds of ARP would use this, XNS, ApleTalk, etc.
  66.  */
  67. struct ether_family {
  68.     int        ef_family;    /* address family */
  69.     u_short        ef_ethertype;    /* ethernet type field */
  70.     struct ifqueue *(*ef_infunc)();    /* input function */
  71.     int        (*ef_outfunc)();/* output function */
  72.     int        (*ef_netisr)();    /* soft interrupt function */
  73.     struct ether_family *ef_next;    /* link to next on list */
  74. };
  75.  
  76. #endif    _IF_ARP_
  77.